home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / tex-k / tex-k-archive.past / tex-k-archive.gz / tex-k-archive / 000299_root@ierley2.ucsd.edu_Thu Feb 10 05:18:20 1994.msg < prev    next >
Internet Message Format  |  1994-10-11  |  5KB

  1. Received: from ierley2.ucsd.edu by cs.umb.edu with SMTP id AA17773
  2.   (5.65c/IDA-1.4.4 for <tex-k@cs.umb.edu>); Thu, 10 Feb 1994 16:27:52 -0500
  3. Received: by ierley2.ucsd.edu (AIX 3.2/UCB 5.64/4.03)
  4.           id AA12579; Thu, 10 Feb 1994 13:18:20 -0800
  5. Date: Thu, 10 Feb 1994 13:18:20 -0800
  6. From: root@ierley2.ucsd.edu
  7. Message-Id: <9402102118.AA12579@ierley2.ucsd.edu>
  8. To: tex-k@cs.umb.edu
  9.  
  10.  
  11. In attempting to install xdvik-1.6 on an IBM RS6000 Model 350 running Aix 3.2, 
  12. the configure seemed to work ok as did most of the make, but the last part of 
  13. the make bombed out with:
  14.  
  15.         cd kpathsea; make  CFLAGS='-g ' SHELL='/bin/sh'  prefix=/usr/local exec_prefix=/usr/local 
  16.         for d in dvipsk web2c xdvik; do \
  17.                   if test -d $d; then (cd $d; make  CFLAGS='-g ' SHELL='/bin/sh'  prefix=/usr/loc\
  18.                   else true; fi; done
  19.         cc  -I. -I. -I..   -DBUTTONS   -g  -c xdvi.c
  20. "/usr/include/X11/Xos.h", line 82.0: 1506-236 (W) Macro name index has been redefined.
  21. "/usr/include/X11/Xos.h", line 83.0: 1506-236 (W) Macro name rindex has been redefined.
  22. "/usr/include/time.h", line 84.25: 1506-046 (S) Syntax error.
  23. "/usr/include/time.h", line 84.58: 1506-046 (S) Syntax error.
  24. "/usr/include/time.h", line 84.61: 1506-046 (S) Syntax error.
  25. "/usr/include/time.h", line 84.89: 1506-046 (S) Syntax error.
  26. "/usr/include/sys/signal.h", line 89.0: 1506-236 (W) Macro name SIGCHLD has been redefined.
  27. make: 1254-004 The error code from the last command is 1.
  28.  
  29. Make Quitting.
  30. make: 1254-004 The error code from the last command is 2.
  31.  
  32.  
  33. the text of /usr/include/time.h is as follows:
  34.  
  35.  
  36. /* @(#)72    1.29  com/inc/time.h, bos, bos320 7/2/91 08:09:10 */
  37. /*
  38.  * COMPONENT_NAME: (LIBCTIME) Standard C Library Time Management Functions
  39.  *
  40.  * ORIGINS: 27
  41.  *
  42.  * (C) COPYRIGHT International Business Machines Corp. 1985, 1990
  43.  * All Rights Reserved
  44.  * Licensed Materials - Property of IBM
  45.  *
  46.  * US Government Users Restricted Rights - Use, duplication or
  47.  * disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  48.  */
  49. #ifndef _H_TIME
  50. #define _H_TIME
  51. #include <standards.h>
  52. #include <stddef.h>
  53.  
  54. /*
  55.  *
  56.  *      The ANSI standard requires that certain values be in time.h.
  57.  *      It also requires that if _ANSI_C_SOURCE is defined then ONLY these
  58.  *      values are present.
  59.  *
  60.  *      This header includes all the ANSI required entries.  In addition
  61.  *      other entries for the AIX system are included.
  62.  *
  63.  */
  64. #ifdef _ANSI_C_SOURCE
  65.  
  66. /* The following definitions are required to be in time.h by ANSI */
  67.  
  68. #ifndef NULL
  69. #define NULL     ((void *)0)
  70. #endif
  71.  
  72. #ifndef _SIZE_T
  73. #define _SIZE_T
  74. typedef unsigned long     size_t;
  75. #endif
  76.  
  77. #ifndef _CLOCK_T
  78. #define _CLOCK_T
  79. typedef int        clock_t;
  80. #endif
  81.  
  82. #ifndef _TIME_T
  83. #define _TIME_T
  84. typedef long        time_t;
  85. #endif
  86.  
  87. #ifndef CLOCKS_PER_SEC
  88. #define CLOCKS_PER_SEC    1000000        /* microseconds in sec */
  89. #endif
  90.  
  91. struct    tm {    /* see ctime(3) */
  92.     int    tm_sec;
  93.     int    tm_min;
  94.     int    tm_hour;
  95.     int    tm_mday;
  96.     int    tm_mon;
  97.     int    tm_year;
  98.     int    tm_wday;
  99.     int    tm_yday;
  100.     int    tm_isdst;
  101. };
  102.  
  103. #ifdef _NO_PROTO
  104.     extern size_t     strftime();
  105.     extern char         *strptime();
  106.     extern size_t       wcsftime();
  107.  
  108.     extern clock_t     clock();
  109.     extern double     difftime();
  110.     extern time_t     mktime();
  111.     extern time_t     time();
  112.     extern char     *asctime();
  113.     extern char     *ctime();
  114.     extern struct tm    *gmtime();
  115.     extern struct tm    *localtime();
  116. #else    /* use POSIX required prototypes */
  117.     extern size_t     strftime(char *, size_t, const char *, const struct tm *);
  118.     extern char         *strptime(const char *, const char *, struct tm *);
  119.     extern size_t       wcsftime(wchar_t *, size_t, const char *, const struct tm *);
  120.  
  121.     extern clock_t     clock(void);
  122.     extern double     difftime(time_t time1, time_t time0);
  123.     extern time_t     mktime(struct tm *timeptr);
  124.     extern time_t     time(time_t *timer);
  125.     extern char     *asctime(const struct tm *timeptr);
  126.     extern char     *ctime(const time_t *timer);
  127.     extern struct tm *gmtime(const time_t *timer);
  128.     extern struct tm *localtime(const time_t *timer);
  129. #endif /* _NO_PROTO */
  130.  
  131. #endif /*_ANSI_C_SOURCE */
  132.  
  133. /*
  134.  *   The following are values that have historically been in time.h.
  135.  *
  136.  *   They are NOT part of the ANSI defined time.h and therefore are
  137.  *   not included when _ANSI_C_SOURCE is defined.
  138.  *
  139.  */
  140.  
  141. #ifdef _POSIX_SOURCE
  142. #include <sys/types.h>
  143.  
  144. #ifndef CLK_TCK
  145. #define CLK_TCK   100       /* clock ticks/second, >= 10 */
  146. #endif
  147.  
  148. extern char *tzname[];
  149.  
  150. #ifdef _NO_PROTO
  151.     extern void tzset();
  152. #else
  153.     extern void tzset(void);
  154. #endif /* _NO_PROTO */
  155.  
  156. #endif /* _POSIX_SOURCE */
  157.  
  158. #ifdef _XOPEN_SOURCE
  159.     extern long timezone;
  160.     extern int daylight;
  161. #endif /* _XOPEN_SOURCE */
  162.  
  163. #ifdef _ALL_SOURCE
  164. /*  Suggested default length of time/date buffer */
  165. #   define NLTBMAX    64
  166. #   ifdef _NO_PROTO
  167.     extern unsigned char *NLctime(), *NLasctime();
  168.     extern char *NLstrtime();
  169. #   else /* ~ _NO_PROTO */
  170.     extern unsigned char *NLctime(long *);
  171.     extern unsigned char *NLasctime(struct tm *);
  172.     extern char *NLstrtime(char *, size_t, const char *, const struct tm *);
  173. #   endif /* _NO_PROTO */
  174. #endif /* _ALL_SOURCE */
  175.  
  176. #endif /* _H_TIME */
  177.  
  178.  
  179. Thanks for any clues you might have,
  180.  
  181. Glenn Ierley
  182.